Uses of Class
edu.uky.ai.ml.nn.Neuron
| Package | Description |
|---|---|
| edu.uky.ai.ml.nn |
Contains classes for representing simple feed-forward neural networks whose
neurons use the sigmoid activation function.
|
-
Uses of Neuron in edu.uky.ai.ml.nn
Subclasses of Neuron in edu.uky.ai.ml.nn Modifier and Type Class Description classInputNeuronA special subclass ofNeuronwhose value can be directly set.Fields in edu.uky.ai.ml.nn declared as Neuron Modifier and Type Field Description NeuronEdge. childThe child (receiver) neuronNeuron[]Layer. neuronsThe neurons in this layerNeuronEdge. parentThe parent (sender) neuronConstructors in edu.uky.ai.ml.nn with parameters of type Neuron Constructor Description Edge(Neuron parent, java.util.Random random, Neuron child)Constructs a new edge in the network.